home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Property Editors / DBEDIT.DFM / DBEDIT.txt
Encoding:
Text File  |  1999-08-11  |  3.2 KB  |  166 lines

  1. object DBEditForm: TDBEditForm
  2.   Left = 196
  3.   Top = 114
  4.   ActiveControl = DatabaseName
  5.   BorderStyle = bsDialog
  6.   ClientHeight = 293
  7.   ClientWidth = 473
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCreate = FormCreate
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object GroupBox1: TGroupBox
  14.     Left = 8
  15.     Top = 4
  16.     Width = 457
  17.     Height = 177
  18.     Caption = ' Database '
  19.     TabOrder = 0
  20.     object Label1: TLabel
  21.       Left = 159
  22.       Top = 19
  23.       Width = 54
  24.       Height = 13
  25.       Caption = '&Alias name:'
  26.       FocusControl = AliasName
  27.     end
  28.     object Label2: TLabel
  29.       Left = 310
  30.       Top = 19
  31.       Width = 60
  32.       Height = 13
  33.       Caption = '&Driver name:'
  34.       FocusControl = DriverName
  35.     end
  36.     object Label3: TLabel
  37.       Left = 8
  38.       Top = 63
  39.       Width = 97
  40.       Height = 13
  41.       Caption = '&Parameter overrides:'
  42.       FocusControl = DatabaseParams
  43.     end
  44.     object Label4: TLabel
  45.       Left = 8
  46.       Top = 19
  47.       Width = 31
  48.       Height = 13
  49.       Caption = '&Name:'
  50.       FocusControl = DatabaseName
  51.     end
  52.     object AliasName: TComboBox
  53.       Left = 159
  54.       Top = 36
  55.       Width = 137
  56.       Height = 21
  57.       ItemHeight = 13
  58.       Sorted = True
  59.       TabOrder = 1
  60.       OnChange = AliasNameChange
  61.       OnClick = ClearButtonClick
  62.       OnDropDown = AliasNameDropDown
  63.     end
  64.     object DriverName: TComboBox
  65.       Left = 310
  66.       Top = 36
  67.       Width = 137
  68.       Height = 21
  69.       ItemHeight = 13
  70.       Sorted = True
  71.       TabOrder = 2
  72.       OnChange = DriverNameChange
  73.       OnClick = ClearButtonClick
  74.       OnDropDown = DriverNameDropDown
  75.     end
  76.     object DatabaseParams: TMemo
  77.       Left = 8
  78.       Top = 80
  79.       Width = 353
  80.       Height = 89
  81.       ScrollBars = ssVertical
  82.       TabOrder = 3
  83.       WordWrap = False
  84.     end
  85.     object DefaultsButton: TButton
  86.       Left = 370
  87.       Top = 80
  88.       Width = 77
  89.       Height = 27
  90.       Caption = 'D&efaults'
  91.       TabOrder = 4
  92.       OnClick = DefaultsButtonClick
  93.     end
  94.     object ClearButton: TButton
  95.       Left = 370
  96.       Top = 112
  97.       Width = 77
  98.       Height = 27
  99.       Caption = '&Clear'
  100.       TabOrder = 5
  101.       OnClick = ClearButtonClick
  102.     end
  103.     object DatabaseName: TEdit
  104.       Left = 8
  105.       Top = 36
  106.       Width = 137
  107.       Height = 21
  108.       TabOrder = 0
  109.     end
  110.   end
  111.   object GroupBox3: TGroupBox
  112.     Left = 8
  113.     Top = 184
  114.     Width = 457
  115.     Height = 61
  116.     Caption = ' Options '
  117.     TabOrder = 1
  118.     object LoginPrompt: TCheckBox
  119.       Left = 8
  120.       Top = 16
  121.       Width = 121
  122.       Height = 17
  123.       Caption = '&Login prompt'
  124.       TabOrder = 0
  125.     end
  126.     object KeepConnection: TCheckBox
  127.       Left = 8
  128.       Top = 36
  129.       Width = 169
  130.       Height = 17
  131.       Caption = '&Keep inactive connection'
  132.       TabOrder = 1
  133.     end
  134.   end
  135.   object OkButton: TButton
  136.     Left = 214
  137.     Top = 257
  138.     Width = 75
  139.     Height = 25
  140.     Caption = 'OK'
  141.     Default = True
  142.     ModalResult = 1
  143.     TabOrder = 2
  144.     OnClick = OkButtonClick
  145.   end
  146.   object CancelButton: TButton
  147.     Left = 302
  148.     Top = 257
  149.     Width = 75
  150.     Height = 25
  151.     Cancel = True
  152.     Caption = 'Cancel'
  153.     ModalResult = 2
  154.     TabOrder = 3
  155.   end
  156.   object HelpButton: TButton
  157.     Left = 390
  158.     Top = 257
  159.     Width = 75
  160.     Height = 25
  161.     Caption = '&Help'
  162.     TabOrder = 4
  163.     OnClick = HelpButtonClick
  164.   end
  165. end
  166.